home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #9
/
Amiga Plus CD - 2004 - No. 09.iso
/
amigaplus
/
tools
/
amigaos4_only
/
ifxlite
/
imagefx3
/
rexx
/
autofx
/
eot_polarmosaic.ifx.pre
< prev
next >
Wrap
Text File
|
2004-08-03
|
722b
|
37 lines
/*
* EOT_PolarMosaic.ifx.pre
* Written by Thomas Krehbiel
*
* Animated Polar Mosaic Effect.
*
* Inputs:
* Word(Arg(1),1) = Sequence number (?)
* Word(Arg(1),2) = Total number of frames (N)
*
* Returns:
* 0 if successful, non-zero on failure
*
*/
OPTIONS RESULTS
base = 'Autofx_PolarMosaic_'
start = GETCLIP(base||'Start')
end = GETCLIP(base||'End')
IF start = "" THEN start = 4
IF end = "" THEN end = 50
Gadget.1 = 'INTEGER 150 5 50 14 "Starting Amount:"' start
Gadget.2 = 'INTEGER 150 20 50 14 "Ending Amount:"' end
Gadget.3 = 'END'
NewComplexRequest '"Polar Mosaic"' Gadget 250 50
IF rc ~= 0 THEN EXIT rc
CALL SETCLIP(base||'Start', result.1)
CALL SETCLIP(base||'End', result.2)
EXIT